home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / bbsutil / dlx70bbs.zip / DLX70SRC.ZIP / FS_PKG.INT < prev    next >
Text File  |  1994-01-19  |  720b  |  23 lines

  1. INTERFACE; UNIT fs_pkg (fs_init,fs_openr,fs_openw,fs_gets,fs_puts,
  2.   fs_eof,fs_close);
  3.  
  4. USES types;
  5.  
  6. {DLX Bulletin Board System V7.0
  7.  
  8.  FREEWARE NOTICE
  9.  
  10.  DLX V7.0 is placed in the public domain by its author, Richard Gillmann.
  11.  Anyone who wishes to may run the program, copy it, or modify it for
  12.  any purpose, including commercial gain.}
  13.  
  14. procedure fs_init;
  15. function fs_openr(line : integer; consts s : lstring) : integer;
  16. function fs_openw(line : integer; consts s : lstring) : integer;
  17. function fs_eof(line : integer) : boolean;
  18. function fs_gets(line : integer; vars s : lstring) : integer;
  19. function fs_puts(line : integer; consts s : lstring) : integer;
  20. procedure fs_close(line : integer);
  21.  
  22. END;
  23.